home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Explore Yellowstone
/
Explore Yellowstone (1997)(The Learning Company)[PC-Mac].iso
/
mac
/
ROSTER.DIR
/
00035_Script_sc display loop5
< prev
next >
Wrap
Text File
|
1996-02-29
|
801b
|
22 lines
on mouseDown
global ThisUser
if the mouseline > 0 then put the mouseLine into ThisUser
put "display loop5 ThisUser:" ThisUser
if ThisUser > 0 then
hilite char 1 to 30 of line ThisUser of field "Display"
put char 1 to 30 of line ThisUser of field "Display" into TextString
if TextString = EMPTY then --*** for blank lines at end of roster
nothing
else if TextString contains "-----" then
put TextString into field "EnterText"
hilite char 1 to 30 of field "EnterText"
set the KeyDownScript to "CheckKey1"
go to "Loop1"
else
put TextString into field "EnterText"
hilite char 1 to 30 of field "EnterText"
set the KeyDownScript to "CheckKey3"
go to "Loop3"
end if
end if
end